forked from sagi/seepur
9 lines
134 B
TypeScript
9 lines
134 B
TypeScript
export interface ISidewayText {
|
|
class: string;
|
|
}
|
|
export default {
|
|
props: ["text", "bold", "textSize"],
|
|
data: () => ({
|
|
|
|
}),
|
|
};
|