import * as React from 'react'; import { ColorOption } from '../style/theme'; import { Container } from './ui/container'; import { Flex } from './ui/flex'; import { Text } from './ui/text'; export interface WalletPromptProps { image: React.ReactNode; onClick?: () => void; primaryColor: ColorOption; secondaryColor: ColorOption; } export const WalletPrompt: React.StatelessComponent = ({ onClick, image, children, secondaryColor, primaryColor, }) => ( {image} {children} ); WalletPrompt.defaultProps = { primaryColor: ColorOption.darkOrange, secondaryColor: ColorOption.lightOrange, }; sd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/security/strongswan
Commit message (Expand)AuthorAgeFilesLines
* - Update to 7.31.0sunpoet2013-07-121-0/+1
* - update to version 5.0.4 which fixes CVE-2013-2944.ohauer2013-05-044-4/+7
* - Update to 5.0.1tota2013-01-075-84/+106
* In the rc.d scripts, change assignments to rcvar to use thedougb2012-01-141-1/+1
* update to 4.5.3flo2011-09-23